home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue59 / Arch / Extended Sample / UnitFormMain.dfm / UnitFormMain.txt
Encoding:
Text File  |  2000-05-29  |  2.8 KB  |  129 lines

  1. inherited FormMain: TFormMain
  2.   Left = 471
  3.   Top = 278
  4.   AutoSize = True
  5.   BorderIcons = [biSystemMenu, biMinimize]
  6.   BorderStyle = bsSingle
  7.   Caption = 'Customer Orders'
  8.   ClientHeight = 48
  9.   ClientWidth = 462
  10.   Menu = MainMenu
  11.   OldCreateOrder = True
  12.   PixelsPerInch = 96
  13.   TextHeight = 13
  14.   object ToolBarMain: TToolBar [0]
  15.     Left = 0
  16.     Top = 0
  17.     Width = 462
  18.     Height = 48
  19.     AutoSize = True
  20.     BorderWidth = 2
  21.     ButtonHeight = 36
  22.     ButtonWidth = 53
  23.     Caption = 'ToolBarMain'
  24.     Images = ImageListBase
  25.     ParentShowHint = False
  26.     ShowCaptions = True
  27.     ShowHint = True
  28.     TabOrder = 0
  29.     object ToolButton5: TToolButton
  30.       Left = 0
  31.       Top = 2
  32.       Action = ActionSaveAll
  33.     end
  34.     object ToolButton1: TToolButton
  35.       Left = 53
  36.       Top = 2
  37.       Width = 8
  38.       Caption = 'ToolButton1'
  39.       ImageIndex = 6
  40.       Style = tbsSeparator
  41.     end
  42.     object ToolButton2: TToolButton
  43.       Left = 61
  44.       Top = 2
  45.       Action = ActionFindOrders
  46.     end
  47.     object ToolButton3: TToolButton
  48.       Left = 114
  49.       Top = 2
  50.       Action = ActionFindCustomer
  51.     end
  52.     object ToolButton4: TToolButton
  53.       Left = 167
  54.       Top = 2
  55.       Action = ActionFindEmployee
  56.     end
  57.   end
  58.   object ActionList: TActionList [1]
  59.     Images = ImageListBase
  60.     Left = 338
  61.     Top = 65530
  62.     object ActionTerminate: TAction
  63.       Category = 'File'
  64.       Caption = 'E&xit'
  65.       Hint = 'Exit'
  66.       OnExecute = ActionTerminateExecute
  67.     end
  68.     object ActionSaveAll: TAction
  69.       Category = 'File'
  70.       Caption = 'Save All'
  71.       Hint = 'Sava all'
  72.       ImageIndex = 5
  73.       OnExecute = ActionSaveAllExecute
  74.       OnUpdate = ActionSaveAllUpdate
  75.     end
  76.     object ActionFindOrders: TAction
  77.       Category = 'Find'
  78.       Caption = 'Orders'
  79.       ImageIndex = 2
  80.       OnExecute = ActionFindOrdersExecute
  81.     end
  82.     object ActionFindCustomer: TAction
  83.       Category = 'Find'
  84.       Caption = 'Customer'
  85.       ImageIndex = 2
  86.       OnExecute = ActionFindCustomerExecute
  87.     end
  88.     object ActionFindEmployee: TAction
  89.       Category = 'Find'
  90.       Caption = 'Employee'
  91.       ImageIndex = 2
  92.       OnExecute = ActionFindEmployeeExecute
  93.     end
  94.   end
  95.   object MainMenu: TMainMenu [2]
  96.     Images = ImageListBase
  97.     Left = 374
  98.     Top = 65526
  99.     object File1: TMenuItem
  100.       Caption = '&File'
  101.       object SaveAll1: TMenuItem
  102.         Action = ActionSaveAll
  103.       end
  104.       object N1: TMenuItem
  105.         Caption = '-'
  106.       end
  107.       object Exit1: TMenuItem
  108.         Action = ActionTerminate
  109.       end
  110.     end
  111.     object Find1: TMenuItem
  112.       Caption = 'F&ind'
  113.       object Orders1: TMenuItem
  114.         Action = ActionFindOrders
  115.       end
  116.       object Customer1: TMenuItem
  117.         Action = ActionFindCustomer
  118.       end
  119.       object Employee1: TMenuItem
  120.         Action = ActionFindEmployee
  121.       end
  122.     end
  123.   end
  124.   inherited ImageListBase: TImageList
  125.     Left = 232
  126.     Top = 4
  127.   end
  128. end
  129.